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.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 /*
7 * Date: 06 Mar 2001
8 *
9 * SUMMARY: Propagate heavyweightness back up the function-nesting
10 * chain. See http://bugzilla.mozilla.org/show_bug.cgi?id=71107
11 *
12 */
13 //-----------------------------------------------------------------------------
14 var BUGNUMBER = 71107;
15 var summary = 'Propagate heavyweightness back up the function-nesting chain.';
17 //-----------------------------------------------------------------------------
18 test();
19 //-----------------------------------------------------------------------------
22 function test()
23 {
24 enterFunc ('test');
25 printBugNumber(BUGNUMBER);
26 printStatus (summary);
28 var actual = outer()()(); //call the return of calling the return of outer()
29 var expect = 5;
30 reportCompare(expect, actual, summary);
32 exitFunc ('test');
33 }
36 function outer () {
37 var outer_var = 5;
39 function inner() {
40 function way_inner() {
41 return outer_var;
42 }
43 return way_inner;
44 }
45 return inner;
46 }