summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/AsyncIterator/prototype/lazy-methods-from-other-global.js
blob: 8b7a945fd5d9801d83f7fc6ecbbd412162a6c5be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// |reftest| skip-if(!this.hasOwnProperty('AsyncIterator'))

async function* gen(values) {
  yield* values;
}

const otherAsyncIteratorProto = newGlobal({newCompartment: true}).AsyncIterator.prototype;

const methods = [
  ["map", x => x],
  ["filter", x => true],
  ["take", Infinity],
  ["drop", 0],
  ["asIndexedPairs", undefined],
  ["flatMap", x => gen([x])],
];

(async () => {
  for (const [method, arg] of methods) {
    const iterator = gen([1, 2, 3]);
    const helper = otherAsyncIteratorProto[method].call(iterator, arg);

    for (const expected of [1, 2, 3]) {
      const {done, value} = await helper.next();
      assertEq(done, false);
      assertEq(Array.isArray(value) ? value[1] : value, expected);
    }

    const {done, value} = await helper.next();
    assertEq(done, true);
    assertEq(value, undefined);
  }
})();

if (typeof reportCompare === 'function')
  reportCompare(0, 0);