blob: ffe17c80e8da153c3976a84ccd54e9b96bfd1195 (
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
41
42
43
44
45
|
// |reftest| skip-if(!this.hasOwnProperty('Iterator')) -- Iterator is not enabled unconditionally
class Iter {
next() {
return { done: false, value: 0 };
}
}
const iter = new Iter();
const wrap = Iterator.from(iter);
assertThrowsInstanceOf(() => wrap.throw(new Error()), Error);
assertThrows(() => wrap.throw());
assertThrows(() => wrap.throw(1));
class IterThrowNull {
next() {
return { done: false, value: 0 };
}
throw = null;
}
const iterNull = new IterThrowNull();
const wrapNull = Iterator.from(iter);
assertThrowsInstanceOf(() => wrapNull.throw(new Error()), Error);
assertThrows(() => wrapNull.throw());
assertThrows(() => wrapNull.throw(1));
class IterWithThrow {
next() {
return { done: false, value: 0 };
}
throw(value) {
return value;
}
}
const iterWithThrow = new IterWithThrow();
const wrapWithThrow = Iterator.from(iterWithThrow);
assertEq(wrapWithThrow.throw(1), 1);
if (typeof reportCompare === 'function')
reportCompare(0, 0);
|