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
|
|
|
fails if GetIterator returns an abrupt completion.
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: S25.4.4.1_A3.1_T3
|
2014-10-23 19:58:31 +02:00
|
|
|
author: Sam Mikes
|
|
|
|
description: Promise.all((throw on GetIterator)) returns Promise rejected with TypeError
|
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 = {};
|
|
|
|
Object.defineProperty(iterThrows, Symbol.iterator, {
|
2018-02-15 21:11:21 +01:00
|
|
|
get: function() {
|
|
|
|
throw new Error("abrupt completion");
|
|
|
|
}
|
2014-10-23 19:58:31 +02:00
|
|
|
});
|
|
|
|
|
2018-02-15 21:11:21 +01:00
|
|
|
Promise.all(iterThrows).then(function() {
|
|
|
|
$ERROR('Promise unexpectedly fulfilled: Promise.all(iterThrows) should throw TypeError');
|
|
|
|
}, function(err) {
|
|
|
|
if (!(err instanceof Error)) {
|
|
|
|
$ERROR('Expected promise to be rejected with error, got ' + err);
|
|
|
|
}
|
|
|
|
}).then($DONE, $DONE);
|