summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/for-of/generator.js
blob: 9e9029864ec4752d05f6ff6a561a190724fb27db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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);

reportCompare(0, 0);