2014-10-23 19:58:31 +02:00
|
|
|
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
|
|
// See LICENSE for details.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
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
|
|
|
|
---*/
|
|
|
|
|
|
|
|
var iterThrows = {};
|
|
|
|
Object.defineProperty(iterThrows, Symbol.iterator, {
|
|
|
|
get: function () {
|
|
|
|
return {
|
|
|
|
next: function () {
|
|
|
|
throw new Error("abrupt completion");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Promise.all(iterThrows).then(function () {
|
|
|
|
$ERROR('Promise unexpectedly resolved: Promise.all(iterThrows) should throw TypeError');
|
|
|
|
},function (err) {
|
|
|
|
if (!(err instanceof TypeError)) {
|
|
|
|
$ERROR('Expected TypeError, got ' + err);
|
|
|
|
}
|
|
|
|
}).then($DONE,$DONE);
|