// This file was procedurally generated from the following sources: // - src/dstr-binding/obj-ptrn-rest-obj-nested-rest.case // - src/dstr-binding/default/async-gen-func-expr-dflt.template /*--- description: When DestructuringAssignmentTarget is an object literal, it should be parsed parsed as a DestructuringAssignmentPattern and evaluated as a destructuring assignment and object rest desconstruction is allowed in that case. (async generator function expression (default parameter)) esid: sec-asyncgenerator-definitions-evaluation features: [object-rest, async-iteration] flags: [generated, async] includes: [propertyHelper.js] info: | AsyncGeneratorExpression : async [no LineTerminator here] function * ( FormalParameters ) { AsyncGeneratorBody } [...] 3. Let closure be ! AsyncGeneratorFunctionCreate(Normal, FormalParameters, AsyncGeneratorBody, scope, strict). [...] ---*/ var callCount = 0; var f; f = async function*({a, b, ...{c, ...rest}} = {a: 1, b: 2, c: 3, d: 4, e: 5}) { assert.sameValue(a, 1); assert.sameValue(b, 2); assert.sameValue(c, 3); assert.sameValue(rest.d, 4); assert.sameValue(rest.e, 5); verifyEnumerable(rest, "d"); verifyWritable(rest, "d"); verifyConfigurable(rest, "d"); verifyEnumerable(rest, "e"); verifyWritable(rest, "e"); verifyConfigurable(rest, "e"); callCount = callCount + 1; }; f().next().then(() => { assert.sameValue(callCount, 1, 'invoked exactly once'); }).then($DONE, $DONE);