Thu, 15 Jan 2015 21:13:52 +0100
Remove forgotten relic of ABI crash risk averse overloaded method change.
1 test();
3 function test()
4 {
5 function generate_big_object_graph()
6 {
7 var root = {};
8 f(root, 17);
9 return root;
10 function f(parent, depth) {
11 if (depth == 0)
12 return;
13 --depth;
15 f(parent.a = {}, depth);
16 f(parent.b = {}, depth);
17 }
18 }
20 function f(obj) {
21 with (obj)
22 return arguments;
23 }
25 for(var i = 0; i != 10; ++i)
26 {
27 gc();
28 var x = null;
29 x = f(generate_big_object_graph());
31 gc(); //all used
33 x = null;
35 gc(); //all free
36 }
37 }