mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 13:44:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			760 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			760 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright 2017 the V8 project authors. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
author: Caitlin Potter <caitp@igalia.com>
 | 
						|
esid: 14.4
 | 
						|
description: >
 | 
						|
  Newlines terminate `yield` expressions.
 | 
						|
flags: [async]
 | 
						|
features: [async-iteration]
 | 
						|
---*/
 | 
						|
 | 
						|
var g = async function*() {
 | 
						|
  yield
 | 
						|
  1;
 | 
						|
};
 | 
						|
 | 
						|
var iter = g();
 | 
						|
iter.next().then(function(result) {
 | 
						|
  assert.sameValue(result.value, undefined, 'First result `value`');
 | 
						|
  assert.sameValue(result.done, false, 'First result `done` flag');
 | 
						|
}).then(undefined, $DONE);
 | 
						|
 | 
						|
iter.next().then(function(result) {
 | 
						|
  assert.sameValue(result.value, undefined, 'Second result `value`');
 | 
						|
  assert.sameValue(result.done, true, 'Second result `done` flag');
 | 
						|
}).then($DONE, $DONE);
 |