Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | function glob_f1() { |
michael@0 | 2 | return 1; |
michael@0 | 3 | } |
michael@0 | 4 | function glob_f2() { |
michael@0 | 5 | return glob_f1(); |
michael@0 | 6 | } |
michael@0 | 7 | function call() |
michael@0 | 8 | { |
michael@0 | 9 | var q1 = 0, q2 = 0, q3 = 0, q4 = 0, q5 = 0; |
michael@0 | 10 | var o = {}; |
michael@0 | 11 | function f1() { |
michael@0 | 12 | return 1; |
michael@0 | 13 | } |
michael@0 | 14 | function f2(f) { |
michael@0 | 15 | return f(); |
michael@0 | 16 | } |
michael@0 | 17 | o.f = f1; |
michael@0 | 18 | for (var i = 0; i < 100; ++i) { |
michael@0 | 19 | q1 += f1(); |
michael@0 | 20 | q2 += f2(f1); |
michael@0 | 21 | q3 += glob_f1(); |
michael@0 | 22 | q4 += o.f(); |
michael@0 | 23 | q5 += glob_f2(); |
michael@0 | 24 | } |
michael@0 | 25 | var ret = String([q1, q2, q3, q4, q5]); |
michael@0 | 26 | return ret; |
michael@0 | 27 | } |
michael@0 | 28 | assertEq(call(), "100,100,100,100,100"); |