Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
1 function f(j) {
2 var a = [[1],[1],[1],[1],[1],[1],[1],[1],[1],arguments];
3 var b;
4 for (var i = 0; i < a.length; i++) {
5 delete a[i][0];
6 b = arguments[0];
7 }
8 assertEq(b === undefined, true);
9 }
10
11 f(1);
12
13