summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/values/iteration-mutable.js
blob: 15a0170d14ab0a392a3757e06cc26089674c32b4 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.values
es6id: 22.1.3.29
description: >
  New items in the array are accessible via iteration until iterator is "done".
info: |
  When an item is added to the array after the iterator is created but
  before the iterator is "done" (as defined by 22.1.5.2.1), the new item's
  value should be accessible via iteration. When an item is added to the
  array after the iterator is "done", the new item should not be
  accessible via iteration.
---*/

var array = [];
var iterator = array.values();
var result;

array.push('a');

result = iterator.next();
assert.sameValue(result.done, false , 'First result `done` flag');
assert.sameValue(result.value, 'a', 'First result `value`');

result = iterator.next();
assert.sameValue(result.done, true, 'Exhausted result `done` flag');
assert.sameValue(result.value, undefined, 'Exhausted result `value`');

array.push('b');

result = iterator.next();
assert.sameValue(
  result.done, true,
  'Exhausted result `done` flag (after push)'
);
assert.sameValue(
  result.value, undefined,
  'Exhausted result `value` (after push)'
);