js/src/jit-test/tests/basic/testLoopingAccumulator.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 function addAccumulations(f) {
     2   var a = f();
     3   var b = f();
     4   return a() + b();
     5 }
     7 function loopingAccumulator() {
     8   var x = 0;
     9   return function () {
    10     for (var i = 0; i < 10; ++i) {
    11       ++x;
    12     }
    13     return x;
    14   }
    15 }
    17 function testLoopingAccumulator() {
    18     var x = addAccumulations(loopingAccumulator);
    19     return x;
    20 }
    21 assertEq(testLoopingAccumulator(), 20);

mercurial