summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Iterator/prototype/lazy-methods-from-other-global.js
blob: 720baf08c746ff8dc99a4903c266c313c3f5dbc3 (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
// |reftest| skip-if(!this.hasOwnProperty('Iterator'))

const otherIteratorProto = newGlobal({newCompartment: true}).Iterator.prototype;

const methods = [
  ["map", x => x],
  ["filter", x => true],
  ["take", Infinity],
  ["drop", 0],
  ["flatMap", x => [x]],
];

// Use the lazy Iterator methods from another global on an iterator from this global.
for (const [method, arg] of methods) {
  const iterator = [1, 2, 3].values();
  const helper = otherIteratorProto[method].call(iterator, arg);

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

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

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