blob: 292778785ced36e687c1755dc921983133644936 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function test()
{
var simple_escape = function()
{
return "simple_escape";
}
throw simple_escape;
}
function runtest()
{
try
{
test();
}
catch (e)
{
return e;
}
};
WScript.Echo((runtest())());
WScript.Echo((runtest())());