js/src/tests/ecma_6/Comprehensions/array-yield.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 // Interactions between yield and array comprehensions.
     4 function assertIteratorResult(result, value, done) {
     5     assertDeepEq(result.value, value);
     6     assertEq(result.done, done);
     7 }
     9 function* t1() { return [for (x of yield 0) x*2] }
    11 var o = t1();
    12 assertIteratorResult(o.next(), 0, false);
    13 assertIteratorResult(o.next([0, 1, 2]), [0, 2, 4], true);
    15 function* t2() { return [for (x of [1,2,3]) yield x] }
    17 o = t2();
    18 assertIteratorResult(o.next(), 1, false);
    19 assertIteratorResult(o.next(5), 2, false);
    20 assertIteratorResult(o.next(6), 3, false);
    21 assertIteratorResult(o.next(7), [5, 6, 7], true);
    23 reportCompare(null, null, "test");

mercurial