mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// This file was procedurally generated from the following sources:
 | 
						|
// - src/dstr-binding/obj-ptrn-rest-val-obj.case
 | 
						|
// - src/dstr-binding/default/async-gen-func-decl.template
 | 
						|
/*---
 | 
						|
description: Rest object contains just unextracted data (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 callCount = 0;
 | 
						|
async function* f({a, b, ...rest}) {
 | 
						|
  assert.sameValue(rest.x, 1);
 | 
						|
  assert.sameValue(rest.y, 2);
 | 
						|
  assert.sameValue(rest.a, undefined);
 | 
						|
  assert.sameValue(rest.b, undefined);
 | 
						|
 | 
						|
  verifyEnumerable(rest, "x");
 | 
						|
  verifyWritable(rest, "x");
 | 
						|
  verifyConfigurable(rest, "x");
 | 
						|
 | 
						|
  verifyEnumerable(rest, "y");
 | 
						|
  verifyWritable(rest, "y");
 | 
						|
  verifyConfigurable(rest, "y");
 | 
						|
 | 
						|
  callCount = callCount + 1;
 | 
						|
};
 | 
						|
f({x: 1, y: 2, a: 5, b: 3}).next().then(() => {
 | 
						|
    assert.sameValue(callCount, 1, 'invoked exactly once');
 | 
						|
}).then($DONE, $DONE);
 |