test262/test/language/expressions/async-generator/throw-suspendedYield-promis...

43 lines
1.2 KiB
JavaScript

// Copyright 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Caitlin Potter <caitp@igalia.com>
esid: pending
description: >
Generator is not resumed after a throw completion with a promise arg
info: |
AsyncGeneratorResumeNext:
If completion.[[Type]] is throw, and generator.[[AsyncGeneratorState]] is
"suspendedYield", generator is resumed and immediately and
closes the generator and returns completion.
AsyncGeneratorReject will not unwrap Promise values
flags: [async]
features: [async-iteration]
---*/
var g = async function*() {
yield 1;
throw new Test262Error('Generator must not be resumed.');
};
var it = g();
var promise = new Promise(function() {});
it.next().then(function(ret) {
assert.sameValue(ret.value, 1, 'Initial yield');
assert.sameValue(ret.done, false, 'Initial yield');
it.throw(promise).then($DONE, function(err) {
assert.sameValue(err, promise, 'AsyncGeneratorReject(generator, resultValue)');
it.next().then(function(ret) {
assert.sameValue(ret.value, undefined, 'Generator is closed');
assert.sameValue(ret.done, true, 'Generator is closed');
}).then($DONE, $DONE);
}).catch($DONE);
}).catch($DONE);