js/src/jit-test/tests/self-hosting/invoke-self-hosted-function.js

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 var callees = [function a() {}, function b() {}, function c() {}, function d() {}, Array.prototype.forEach];
     3 function f() {
     4     for (var i = 0; i < callees.length; ++i) {
     5     	callees[i](function(){});
     6     }
     7 }
     9 f();

mercurial