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

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 // |jit-test| error: ReferenceError
     3 var lfcode = new Array();
     4 lfcode.push("3");
     5 lfcode.push("enableSPSProfilingAssertions(false);foo();");
     6 while (true) {
     7   var file = lfcode.shift(); if (file == undefined) { break; }
     8   loadFile(file)
     9 }
    10 function loadFile(lfVarx) {
    11     if (lfVarx.substr(-3) != ".js" && lfVarx.length != 1) {
    12         switch (lfRunTypeId) {
    13             default: function newFunc(x) { new Function(x)(); }; newFunc(lfVarx); break;
    14         }
    15     } else if (!isNaN(lfVarx)) {
    16         lfRunTypeId = parseInt(lfVarx);
    17     }
    18 }

mercurial