| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- var glo;
- var box = false;
- function test(param)
- {
- var recurse = 0;
- function nested1(param2)
- {
- function nested2(re)
- {
- if (re)
- {
- nested2();
- }
- return param + param2;
- }
- recurse++;
- if (recurse < 10)
- {
- return nested1(param + param2 + recurse);
- }
- if (box)
- {
- escape();
- return nested2() + blah();
- }
- return nested2();
- }
- WScript.Echo(nested1());
- function blah() { return "blah"; }
- }
- function escape()
- {
- glo = escape.caller;
- }
- test("test1");
- test("test2"); // JIT
- box = true;
- test("test3" )
- WScript.Echo(glo());
|