mirror of https://github.com/tc39/test262.git
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
|
// This file was procedurally generated from the following sources:
|
||
|
// - src/dstr-binding/ary-ptrn-elem-id-iter-step-err.case
|
||
|
// - src/dstr-binding/error/async-gen-func-expr-dflt.template
|
||
|
/*---
|
||
|
description: Error forwarding when IteratorStep returns an abrupt completion (async generator function expression (default parameter))
|
||
|
esid: sec-asyncgenerator-definitions-evaluation
|
||
|
features: [async-iteration]
|
||
|
flags: [generated]
|
||
|
info: |
|
||
|
AsyncGeneratorExpression : async [no LineTerminator here] function * ( FormalParameters ) {
|
||
|
AsyncGeneratorBody }
|
||
|
|
||
|
[...]
|
||
|
3. Let closure be ! AsyncGeneratorFunctionCreate(Normal, FormalParameters,
|
||
|
AsyncGeneratorBody, scope, strict).
|
||
|
[...]
|
||
|
|
||
|
13.3.3.6 Runtime Semantics: IteratorBindingInitialization
|
||
|
|
||
|
SingleNameBinding : BindingIdentifier Initializeropt
|
||
|
|
||
|
[...]
|
||
|
4. If iteratorRecord.[[done]] is false, then
|
||
|
a. Let next be IteratorStep(iteratorRecord.[[iterator]]).
|
||
|
b. If next is an abrupt completion, set iteratorRecord.[[done]] to true.
|
||
|
c. ReturnIfAbrupt(next).
|
||
|
---*/
|
||
|
var g = {};
|
||
|
g[Symbol.iterator] = function() {
|
||
|
return {
|
||
|
next: function() {
|
||
|
throw new Test262Error();
|
||
|
}
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
var f = async function*([x] = g) {
|
||
|
|
||
|
};
|
||
|
|
||
|
assert.throws(Test262Error, function() {
|
||
|
f();
|
||
|
});
|