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(a1, a2, a3, a4) {
2 }
3 function g(a1, a2) {
4 var d = new Date(0);
5 f();
6 assertEq(typeof d, 'object');
7 }
8 g();
9 gc();
10 f(2, 2, 2, f(2, 2, 2, 12 === 12));
11 g(false, false);