summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Iterator/prototype/take-drop-throw-eagerly-on-negative.js
blob: 8eef93ab098a0ba16b6864800aa5bd6c0aa8e8ef (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'))

//
//
/*---
esid: pending
description: `take` and `drop` throw eagerly when passed negative numbers, after rounding towards 0.
info: >
  Iterator Helpers proposal 2.1.5.4 and 2.1.5.5
features: [iterator-helpers]
---*/

const iter = [].values();
const methods = [
  value => iter.take(value),
  value => iter.drop(value),
];

for (const method of methods) {
  assertThrowsInstanceOf(() => method(-1), RangeError);
  assertThrowsInstanceOf(() => method(-Infinity), RangeError);
  assertThrowsInstanceOf(() => method(NaN), RangeError);
  assertThrowsInstanceOf(() => method(-NaN), RangeError);

  method(-0);
  method(-0.9);
}

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