Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 // The identifier of a ComprehensionFor is only bound within its tail.
3 function t() {
4 var x = [0, 1, 2];
5 return [for (x of x) x*2]
6 }
7 assertDeepEq(t(), [0, 2, 4]);
9 // Each iteration should create a fresh binding. Unfortunately this is
10 // not currently the case, but bug 449811 will fix this.
11 function t2() {
12 var x = [0, 1, 2];
13 return [for (x of x) ()=>x]
14 }
15 // FIXME: Should be [0, 1, 2].
16 assertDeepEq([for (x of t2()) x()], [2, 2, 2]);
18 reportCompare(null, null, "test");