2014-10-23 19:58:31 +02:00
|
|
|
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
|
|
// See LICENSE for details.
|
|
|
|
|
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2015-02-10 22:01:39 +01:00
|
|
|
Promise.all expects an iterable argument;
|
2014-10-23 19:58:31 +02:00
|
|
|
rejects if IteratorStep() throws
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: S25.4.4.1_A5.1_T1
|
2014-10-23 19:58:31 +02:00
|
|
|
author: Sam Mikes
|
|
|
|
description: iterator.next throws, causing Promise.all to reject
|
2015-12-03 22:05:47 +01:00
|
|
|
features: [Symbol.iterator]
|
2016-02-12 18:59:51 +01:00
|
|
|
flags: [async]
|
2014-10-23 19:58:31 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
var iterThrows = {};
|
2015-06-23 04:15:04 +02:00
|
|
|
var error = new Test262Error();
|
|
|
|
iterThrows[Symbol.iterator] = function() {
|
2018-02-15 21:11:21 +01:00
|
|
|
return {
|
|
|
|
next: function() {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
};
|
2015-06-23 04:15:04 +02:00
|
|
|
};
|
2014-10-23 19:58:31 +02:00
|
|
|
|
2018-02-15 21:11:21 +01:00
|
|
|
Promise.all(iterThrows).then(function() {
|
|
|
|
$ERROR('Promise unexpectedly resolved: Promise.all(iterThrows) should throw TypeError');
|
|
|
|
}, function(reason) {
|
|
|
|
assert.sameValue(reason, error);
|
|
|
|
}).then($DONE, $DONE);
|