summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/AsyncIterator/prototype/lazy-methods-throw-eagerly-on-next-non-callable.js
blob: 489887d0207717ece804f59196c403759c6bbcec (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
// |reftest| skip-if(!this.hasOwnProperty('AsyncIterator'))

//
//
/*---
esid: pending
description: Lazy %AsyncIterator.prototype% methods throw eagerly when `next` is non-callable.
info: >
  Iterator Helpers proposal 1.1.1
features: [iterator-helpers]
---*/

async function* gen(x) { yield x; }
const methods = [
  next => AsyncIterator.prototype.map.bind({next}, x => x),
  next => AsyncIterator.prototype.filter.bind({next}, x => x),
  next => AsyncIterator.prototype.take.bind({next}, 1),
  next => AsyncIterator.prototype.drop.bind({next}, 0),
  next => AsyncIterator.prototype.asIndexedPairs.bind({next}),
  next => AsyncIterator.prototype.flatMap.bind({next}, gen),
];

for (const method of methods) {
  assertThrowsInstanceOf(method(0), TypeError);
  assertThrowsInstanceOf(method(false), TypeError);
  assertThrowsInstanceOf(method(undefined), TypeError);
  assertThrowsInstanceOf(method(null), TypeError);
  assertThrowsInstanceOf(method(''), TypeError);
  assertThrowsInstanceOf(method(Symbol('')), TypeError);
  assertThrowsInstanceOf(method({}), TypeError);
  assertThrowsInstanceOf(method([]), TypeError);
}

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