blob: cda21c2dca104f97d10679a4b78791c1dc5d44f7 [file]
//-------------------------------------------------------------------------------------------------------
// 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 doEscape = false;
function test(param)
{
function nested()
{
escape();
return param;
}
function escape()
{
if (doEscape && !glo)
glo = arguments.callee.caller;
}
nested();
}
test("test3");
test("test2"); // JIT
doEscape = true;
test("test1"); // box
WScript.Echo(glo());