mirror of
https://github.com/tc39/test262.git
synced 2025-07-14 17:44:39 +02:00
38 lines
881 B
JavaScript
38 lines
881 B
JavaScript
// Copyright (C) 2024 André Bargull. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-iterator.concat
|
|
description: >
|
|
Underlying iterator has throwing next method
|
|
info: |
|
|
Iterator.concat ( ...items )
|
|
|
|
...
|
|
3. Let closure be a new Abstract Closure with no parameters that captures iterables and performs the following steps when called:
|
|
a. For each Record iterable of iterables, do
|
|
...
|
|
v. Repeat, while innerAlive is true,
|
|
1. Let innerValue be ? IteratorStepValue(iteratorRecord).
|
|
...
|
|
features: [iterator-sequencing]
|
|
---*/
|
|
|
|
let throwingIterator = {
|
|
next() {
|
|
throw new Test262Error();
|
|
}
|
|
};
|
|
|
|
let iterable = {
|
|
[Symbol.iterator]() {
|
|
return throwingIterator;
|
|
}
|
|
};
|
|
|
|
let iterator = Iterator.concat(iterable);
|
|
|
|
assert.throws(Test262Error, function() {
|
|
iterator.next();
|
|
});
|