// This file was procedurally generated from the following sources: // - src/dstr-binding/obj-ptrn-rest-obj-own-property.case // - src/dstr-binding/default/async-gen-func-decl-dflt.template /*--- description: Rest object contains just soruce object's own properties (async generator function declaration (default parameter)) esid: sec-asyncgenerator-definitions-instantiatefunctionobject features: [object-rest, async-iteration] flags: [generated, async] includes: [propertyHelper.js] info: | AsyncGeneratorDeclaration : async [no LineTerminator here] function * BindingIdentifier ( FormalParameters ) { AsyncGeneratorBody } [...] 3. Let F be ! AsyncGeneratorFunctionCreate(Normal, FormalParameters, AsyncGeneratorBody, scope, strict). [...] ---*/ var o = Object.create({ x: 1, y: 2 }); o.z = 3; var callCount = 0; async function* f({ x, ...{y , z} } = o) { assert.sameValue(x, 1); assert.sameValue(y, undefined); assert.sameValue(z, 3); callCount = callCount + 1; }; f().next().then(() => { assert.sameValue(callCount, 1, 'invoked exactly once'); }).then($DONE, $DONE);