summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/from/elements-updated-after.js
blob: 210aaf5fd46afe1619781714e499df2d1bcef54b (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
// Copyright 2015 Microsoft Corporation. All rights reserved.
// This code is governed by the license found in the LICENSE file.

/*---
description: Elements are updated after the call to from
esid: sec-array.from
---*/

var array = [127, 4, 8, 16, 32, 64, 128];
var arrayIndex = -1;

function mapFn(value, index) {
  arrayIndex++;
  if (index + 1 < array.length) {
    array[index + 1] = 127;
  }
  assert.sameValue(value, 127, 'The value of value is expected to be 127');
  assert.sameValue(index, arrayIndex, 'The value of index is expected to equal the value of arrayIndex');

  return value;
}

var a = Array.from(array, mapFn);
assert.sameValue(a.length, array.length, 'The value of a.length is expected to equal the value of array.length');
for (var j = 0; j < a.length; j++) {
  assert.sameValue(a[j], 127, 'The value of a[j] is expected to be 127');
}

reportCompare(0, 0);