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 //test no multitrees assert
2 function testGlobalMultitrees1() {
3 (function() {
4 for (var j = 0; j < 4; ++j) {
5 for each (e in ['A', 1, 'A']) {
6 }
7 }
8 })();
9 return true;
10 }
11 assertEq(testGlobalMultitrees1(), true);