summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/statements/for-loop-declaration-contains-initializer.js
blob: 7010c9eba99c265b84edbe3503cf87c5454bdb62 (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
41
42
43
44
45
46
47
48
49
50
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */

var gTestfile = "for-loop-declaration-contains-computed-name.js";
var BUGNUMBER = 1233767;
var summary =
  "Support initializer defaults in destructuring declarations in for-in/of " +
  "loop heads";

print(BUGNUMBER + ": " + summary);

/**************
 * BEGIN TEST *
 **************/

var count;
var expr;

expr = [{ z: 42, 42: "hi" }, { 7: 'fnord' }];
count = 0;
for (var { z: x = 7, [x]: y = 3 } of expr)
{
  if (count === 0) {
    assertEq(x, 42);
    assertEq(y, "hi");
  } else {
    assertEq(x, 7);
    assertEq(y, "fnord");
  }

  count++;
}

count = 0;
for (var { length: x, [x - 1 + count]: y = "psych" } in "foo")
{
  assertEq(x, 1);
  assertEq(y, count === 0 ? "0" : "psych");

  count++;
}

/******************************************************************************/

if (typeof reportCompare === "function")
  reportCompare(true, true);

print("Tests complete");