mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-02 20:53:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// 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.template
 | 
						|
/*---
 | 
						|
description: Rest object contains just soruce object's own properties (async generator function declaration)
 | 
						|
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} }) {
 | 
						|
  assert.sameValue(x, 1);
 | 
						|
  assert.sameValue(y, undefined);
 | 
						|
  assert.sameValue(z, 3);
 | 
						|
 | 
						|
  callCount = callCount + 1;
 | 
						|
};
 | 
						|
f(o).next().then(() => {
 | 
						|
    assert.sameValue(callCount, 1, 'invoked exactly once');
 | 
						|
}).then($DONE, $DONE);
 |