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

//
//
/*---
esid: pending
description: Lazy %AsyncIterator.prototype% methods throw eagerly when passed non-callables.
info: >
  Iterator Helpers proposal 2.1.6
features: [iterator-helpers]
---*/

async function* gen() {}

const methods = [
  (iter, fn) => iter.map(fn),
  (iter, fn) => iter.filter(fn),
  (iter, fn) => iter.flatMap(fn),
];

for (const method of methods) {
  assertThrowsInstanceOf(() => method(AsyncIterator.prototype, 0), TypeError);
  assertThrowsInstanceOf(() => method(AsyncIterator.prototype, false), TypeError);
  assertThrowsInstanceOf(() => method(AsyncIterator.prototype, undefined), TypeError);
  assertThrowsInstanceOf(() => method(AsyncIterator.prototype, null), TypeError);
  assertThrowsInstanceOf(() => method(AsyncIterator.prototype, ''), TypeError);
  assertThrowsInstanceOf(() => method(AsyncIterator.prototype, Symbol('')), TypeError);
  assertThrowsInstanceOf(() => method(AsyncIterator.prototype, {}), TypeError);

  assertThrowsInstanceOf(() => method(gen(), 0), TypeError);
  assertThrowsInstanceOf(() => method(gen(), false), TypeError);
  assertThrowsInstanceOf(() => method(gen(), undefined), TypeError);
  assertThrowsInstanceOf(() => method(gen(), null), TypeError);
  assertThrowsInstanceOf(() => method(gen(), ''), TypeError);
  assertThrowsInstanceOf(() => method(gen(), Symbol('')), TypeError);
  assertThrowsInstanceOf(() => method(gen(), {}), TypeError);
}

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