mirror of https://github.com/tc39/test262.git
24 lines
459 B
JavaScript
24 lines
459 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.
|
||
|
---*/
|
||
|
|
||
|
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);
|