mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			482 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			482 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2013 the V8 project authors. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
/*---
 | 
						|
es6id: 13.6.4.13
 | 
						|
description: >
 | 
						|
    Generator function should return valid iterable objects.
 | 
						|
features: [generators]
 | 
						|
---*/
 | 
						|
 | 
						|
function* values() {
 | 
						|
  yield 2;
 | 
						|
  yield 4;
 | 
						|
  yield 8;
 | 
						|
}
 | 
						|
var iterable = values();
 | 
						|
var expected = [2, 4, 8];
 | 
						|
var i = 0;
 | 
						|
 | 
						|
for (var x of iterable) {
 | 
						|
  assert.sameValue(x, expected[i]);
 | 
						|
  i++;
 | 
						|
}
 | 
						|
 | 
						|
assert.sameValue(i, 3);
 |