2015-03-30 18:48:02 +02:00
|
|
|
// Copyright (C) 2013 the V8 project authors. All rights reserved.
|
2015-02-18 23:56:07 +01:00
|
|
|
// 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.
|
2015-05-27 17:24:42 +02:00
|
|
|
features: [generators]
|
2015-02-18 23:56:07 +01:00
|
|
|
---*/
|
|
|
|
|
|
|
|
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);
|