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

branch
TOR_BUG_3246
changeset 7
129ffea94266
equal deleted inserted replaced
-1:000000000000 0:535ad39a679b
1 var callees = [function a() {}, function b() {}, function c() {}, function d() {}, Array.prototype.forEach];
2
3 function f() {
4 for (var i = 0; i < callees.length; ++i) {
5 callees[i](function(){});
6 }
7 }
8
9 f();

mercurial