blob: 7928d049dc5a09ce9440e75cdb1f8b53beb9182b (
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
|
/*
* 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 computed property names in destructuring declarations in " +
"for-in/of loop heads";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
var count;
count = 0;
for (var { [5]: x, [x]: y } of [{ 5: 42, 42: "hi" }, { 5: 17, 17: 'fnord' }])
{
if (count === 0) {
assertEq(x, 42);
assertEq(y, "hi");
} else {
assertEq(x, 17);
assertEq(y, "fnord");
}
count++;
}
count = 0;
for (var { length: x, [x - 1]: y } in "foo")
{
assertEq(x, 1);
assertEq("" + count, y);
count++;
}
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");
|