Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 function testDenseArrayProp()
2 {
3 [].__proto__.x = 1;
4 ({}).__proto__.x = 2;
5 var a = [[],[],[],({}).__proto__];
6 for (var i = 0; i < a.length; ++i)
7 uneval(a[i].x);
8 delete [].__proto__.x;
9 delete ({}).__proto__.x;
10 return "ok";
11 }
12 assertEq(testDenseArrayProp(), "ok");