|
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/. */ |
|
5 |
|
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.'; |
|
16 |
|
17 //----------------------------------------------------------------------------- |
|
18 test(); |
|
19 //----------------------------------------------------------------------------- |
|
20 |
|
21 |
|
22 function test() |
|
23 { |
|
24 enterFunc ('test'); |
|
25 printBugNumber(BUGNUMBER); |
|
26 printStatus (summary); |
|
27 |
|
28 var actual = outer()()(); //call the return of calling the return of outer() |
|
29 var expect = 5; |
|
30 reportCompare(expect, actual, summary); |
|
31 |
|
32 exitFunc ('test'); |
|
33 } |
|
34 |
|
35 |
|
36 function outer () { |
|
37 var outer_var = 5; |
|
38 |
|
39 function inner() { |
|
40 function way_inner() { |
|
41 return outer_var; |
|
42 } |
|
43 return way_inner; |
|
44 } |
|
45 return inner; |
|
46 } |